home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-17 / pw21.zip / READ.ME < prev   
Text File  |  1991-05-04  |  3KB  |  69 lines

  1.  
  2.  
  3.         TO USE THE PASSWORD DEVICE DRIVER SYSTEM:
  4.  
  5.         Place the file PW.BIN in the root directory of your
  6.         normal bootup drive, normally drive C:\ . Next place the
  7.         statement  DEVICE=PW.BIN   in the first position of your
  8.         CONFIG.SYS file.  Press Ctrl-Alt-Del to reboot and load
  9.         the Device driver.
  10.  
  11.         The default password is: PASSWORD    note: case is unimportant.
  12.         If you make a mistake entering the password, use the backspace
  13.         key.  To start over press ESC.
  14.  
  15.         To Change the password, place the file INSTALL.COM into the same
  16.         directory as PW.BIN and run by typing "install".  You will be
  17.         prompted for a new password.  If you make a mistake entering
  18.         the password, use the backspace key. To abort, press ESC.
  19.         The program will install the new password directly into the
  20.         file PW.BIN  and that's all there is to it, simple.
  21.  
  22.         If you would like to change the default color of PW, the color
  23.         attribute byte is clearly marked in the program code as: "Color=07".
  24.         You can use any hex editor, or the DOS Debug program. To use
  25.         Debug, at the Dos prompt type:
  26.  
  27.         debug pw.bin <enter>
  28.         e 161 xx <enter>  note: xx = two digit hex color number.
  29.         w <enter>                    see color table below.
  30.         q <enter>
  31.  
  32.         You will now be returned to the Dos prompt with your
  33.         PW.BIN file's color attribute modified.
  34.  
  35.         Color Table (hex)
  36.         xx = background color, foreground color
  37.  
  38.        (background)            (foreground)
  39.         0 = black               0 = black
  40.         1 = blue                1 = blue
  41.         2 = green               2 = green
  42.         3 = cyan                3 = cyan
  43.         4 = red                 4 = red
  44.         5 = magenta             5 = magenta
  45.         6 = brown               6 = brown
  46.         7 = white               7 = white
  47.                                 8 = dark grey
  48.                                 9 = light blue
  49.                                 A = light green
  50.                                 B = light cyan
  51.                                 C = light red
  52.                                 D = light magenta
  53.                                 E = yellow
  54.                                 F = bright white
  55.  
  56.         Example: to set the color to a blue backround with a bright
  57.                  white foreground the hex number would be 1F
  58.  
  59.                  debug pw.bin
  60.                  e 161 1F <enter>
  61.                  w <enter>
  62.                  q <enter>
  63.  
  64. Note: PW will return to the DOS white on black when it exits, no matter
  65.       what color it has been modified for.
  66.  
  67. PW Version 2.1 -Final Version-
  68.  
  69.